home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_200 / 221_01 / tolower.c < prev    next >
Encoding:
Text File  |  1980-01-01  |  256 b   |  8 lines

  1. /*
  2. **  convert c to lower case
  3. */
  4. tolower(c) char c; {
  5.   if(isupper(c) & isalpha(c)) return (c+32);
  6.   else return c;
  7.   }
  8.